home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / BitAND.au3 < prev    next >
Text File  |  2006-06-17  |  129b  |  5 lines

  1. $x = BitAND(13, 7) ;x == 5 because 1101 AND 0111 = 0101
  2.  
  3. $x = BitAND(2, 3, 6) ;x == 2 because 0010 AND 0011 AND 0110 = 0010
  4.  
  5.